home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global nFin, bVideoNormal, c3, c4
- if the movieTime of sprite 5 < nFin then
- if bVideoNormal then
- if (the mouseV >= 221) and (the mouseH >= 320) and (the mouseV <= 269) and (the mouseH <= 406) then
- cursor([c3, c4])
- else
- cursor(-1)
- end if
- else
- if (the mouseV >= 210) and (the mouseH >= 350) and (the mouseV <= 240) and (the mouseH <= 405) then
- cursor([c3, c4])
- else
- cursor(-1)
- end if
- end if
- go(the frame)
- else
- go("bocaIni" & bVideoNormal)
- end if
- end
-
- on mouseDown
- global bVideoNormal
- if bVideoNormal then
- if (the mouseV >= 221) and (the mouseH >= 320) and (the mouseV <= 269) and (the mouseH <= 406) then
- cursor(-1)
- go("finPres1")
- end if
- else
- if (the mouseV >= 210) and (the mouseH >= 350) and (the mouseV <= 240) and (the mouseH <= 405) then
- cursor(-1)
- go("finPres0")
- end if
- end if
- end
-